// // OptionSetTest.cs // // Authors: // Jonathan Pryor // // Copyright (C) 2008 Novell (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.IO; #if NDESK_OPTIONS using NDesk.Options; #else using Mono.Options; #endif using Cadenza.Collections.Tests; using NUnit.Framework; #if NDESK_OPTIONS namespace Tests.NDesk.Options #else namespace MonoTests.Mono.Options #endif { class FooConverter : TypeConverter { public override bool CanConvertFrom (ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof (string)) return true; return base.CanConvertFrom (context, sourceType); } public override object ConvertFrom (ITypeDescriptorContext context, CultureInfo culture, object value) { string v = value as string; if (v != null) { switch (v) { case "A": return Foo.A; case "B": return Foo.B; } } return base.ConvertFrom (context, culture, value); } } [TypeConverter (typeof(FooConverter))] class Foo { public static readonly Foo A = new Foo ("A"); public static readonly Foo B = new Foo ("B"); string s; Foo (string s) { this.s = s; } public override string ToString () {return s;} } class TestArgumentSource : ArgumentSource, IEnumerable { string[] names; string desc; public TestArgumentSource (string[] names, string desc) { this.names = names; this.desc = desc; } Dictionary args = new Dictionary(); public void Add (string key, params string[] values) { args.Add (key, values); } public override string[] GetNames () { return names; } public override string Description { get {return desc;} } public override bool GetArguments (string value, out IEnumerable replacement) { replacement = null; string[] values; if (args.TryGetValue (value, out values)) { replacement = values; return true; } return false; } IEnumerator IEnumerable.GetEnumerator () { return args.GetEnumerator (); } } [TestFixture] public class OptionSetTest : ListContract